POV-Ray : Newsgroups : povray.binaries.images : Spiral wrapped around a sphere. How? : Re: Spiral wrapped around a sphere. How? Server Time
16 Aug 2024 12:23:45 EDT (-0400)
  Re: Spiral wrapped around a sphere. How?  
From: Shay
Date: 3 Feb 2002 20:17:47
Message: <3c5de13b$1@news.povray.org>
I'm sorry. 3*pi/4 should have been 3*pi/2
You don't need to translate the spiral any along the y-axis. Setting x and y
to the cos and sin of the angle will do that for you.
The formula itself zill make a half-moon arc. Rotating each sphere some will
give you the twist.
Like this:
#declare MinRad = pi/2;
#declare MaxRad = (3*pi/2);
#declare Test =
union {
   #while (MinRad < MaxRad)
      object {sphere {<0,0,0>, 0.01 translate <cos(MinRad)*1, sin(MinRad)*1,
0> rotate y*degrees(MinRad)*20 pigment {rgb <1,0,0>}}}
   #declare MinRad = MinRad + 0.0001;
   #end
}

object {Test /*rotate x * -90 translate <0,-2,0>*/}

#declare MinRad = pi/2;
#declare MaxRad = (3*pi/2);
#declare Test =
union {
   #while (MinRad < MaxRad)
      object {sphere {<0,0,0>, 0.01 translate <cos(MinRad)*1, sin(MinRad)*1,
0> rotate y*degrees(MinRad)*20 pigment {rgb <1,0,0>}}}
   #declare MinRad = MinRad + 0.0001;
   #end
}

object {Test /*rotate x * -90 translate <0,-2,0>*/}
"Patrick Dugan" <pat### [at] netinsnet> wrote in message
news:3c5dddaf$1@news.povray.org...
> Well I probably butchered the formula but here is what I made:


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.